home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************************************
- *
- *
- * ObjectMacZapp -- a standard Mac OOP application template
- *
- *
- *
- * ZThreadedApplication.h -- the threaded application object
- *
- *
- *
- *
- *
- * © 1996, Graham Cox
- *
- *
- *
- *
- *************************************************************************************************/
-
-
- #pragma once
-
- #ifndef __ZTHREADEDAPPLICATION__
- #define __ZTHREADEDAPPLICATION__
-
- #ifndef __ZAPPLICATION__
- #include "ZApplication.h"
- #endif
-
- class ZThreadedApplication : public ZApplication
- {
- public:
-
- virtual void InitMacZoop( const short numMasterBlocks = 8 );
- virtual void Process1Event();
- };
-
-
- extern Boolean gMacHasThreadManager;
-
- #endif